home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
libmat.lha
/
src
/
mneq.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
131b
|
8 lines
// MATRIX LIB
// TOMMY JOHANSSON 1995
#include "matrix.h"
int Matrix::operator != (const Matrix& A)
{
return(!(*this==A));
}